//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['Telluride Jazz Festival: Kamasi Washington, Trombone Shorty and Orleans Avenue & Karl Denson's Tiny Universe - 3 Day Pass','Town Park Telluride','Telluride, CO','Friday','8/8/2025','TBD','6727363','Telluride-Jazz-Festival--Kamasi-Washington--Trombone-Shorty-and-Orleans-Avenue---Karl-Denson-s-Tiny-Universe---3-Day-Pass-8-8-2025'],['Telluride Jazz Festival - Friday','Town Park Telluride','Telluride, CO','Friday','8/8/2025','12:00 PM','6727364','Telluride-Jazz-Festival---Friday-8-8-2025'],['Telluride Jazz Festival - Saturday','Town Park Telluride','Telluride, CO','Saturday','8/9/2025','11:30 AM','6727365','Telluride-Jazz-Festival---Saturday-8-9-2025'],['Telluride Jazz Festival - Sunday','Town Park Telluride','Telluride, CO','Sunday','8/10/2025','12:30 PM','6727366','Telluride-Jazz-Festival---Sunday-8-10-2025'],['Camp Alderwild: Of The Trees, Jade Cicada, Tycho & Ott. - 2 Day Pass','Town Park Telluride','Telluride, CO','Friday','8/22/2025','TBD','7093450','Camp-Alderwild--Of-The-Trees--Jade-Cicada--Tycho---Ott----2-Day-Pass-8-22-2025'],['Camp Alderwild - Saturday','Town Park Telluride','Telluride, CO','Saturday','8/23/2025','TBD','7099879','Camp-Alderwild---Saturday-8-23-2025'],['Telluride Blues And Brews Festival: The Black Crowes, Thundercat, Lukas Nelson & Samantha Fish - 3 Day Pass','Town Park Telluride','Telluride, CO','Friday','9/12/2025','TBD','6755702','Telluride-Blues-And-Brews-Festival--The-Black-Crowes--Thundercat--Lukas-Nelson---Samantha-Fish---3-Day-Pass-9-12-2025'],['Telluride Blues And Brews Festival - Friday','Town Park Telluride','Telluride, CO','Friday','9/12/2025','11:30 AM','6755703','Telluride-Blues-And-Brews-Festival---Friday-9-12-2025'],['Telluride Blues And Brews Festival - Saturday','Town Park Telluride','Telluride, CO','Saturday','9/13/2025','11:30 AM','6755704','Telluride-Blues-And-Brews-Festival---Saturday-9-13-2025'],['Telluride Blues And Brews Festival - Sunday','Town Park Telluride','Telluride, CO','Sunday','9/14/2025','11:30 AM','6755706','Telluride-Blues-And-Brews-Festival---Sunday-9-14-2025']],'Telluride Town Park','http://www.ticketnetwork.com/ticket/Telluride-Town-Park-events.aspx');